home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
exec
/
funumin.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
340 b
|
20 lines
/*
\funcref{fun\_umin}{void fun\_umin ()}
{}
{}
{}
{}
{funumin.c}
{
Function {\em fun\_umin()} reverses the sign of the last pushed
variable. This variable is assumed to be of type {\em e\_int}.
}
*/
#include "icm-exec.h"
void fun_umin ()
{
stack [sp].vu.intval = - stack [sp].vu.intval;
}